Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes a bug in get_app_issues and adds a missing method to fetch all component issues for a repository. The original implementation incorrectly filtered by component_id without filtering by repo, making it impossible to fetch all issues for a repository.
Key changes:
- Fixed
get_app_issuesto properly filter by repo and make component_id optional - Added
get_component_issues_for_repotool to expose repo-level issue querying - Added
issue_idto the response dictionary for better issue tracking
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…dit_iter fix audit_issue_local_iter
The taskflow assumes that there is a method that fetches all the component issues for a repo, which doesn't exist. This PR adds that method.